Hi All, |
Re: Archive-Restore and Module Views created using the "Analysis Wizard" Yes, that's a VERY annoying feature of these layouts. It lets you link to the same module even if you rename or move it; but sheesh, I think I'd rather just link to the module name. You can get the unique ID of a module this way:
There is also qualifiedUniqueID() but you don't need that. |
Re: Archive-Restore and Module Views created using the "Analysis Wizard" llandale - Tue Sep 15 18:01:42 EDT 2009
There is also qualifiedUniqueID() but you don't need that. |
Re: Archive-Restore and Module Views created using the "Analysis Wizard" This is a follow-up to my earlier post. So this is what I am trying to develop a DXL script to do the following: a. Search through all layout dxl columns created by the DOORS analysis wizard. b. Tweak the layout dxl such that the static module ID references are replaced by variables that capture the unique ID the module that is being referenced. Here is an illustration of this step: I first want to find the following line in the layout DXL column. string limitModules[4] = {"1000045","1000045", "1000045","1000045"} The 1000045 value is the unique ID of the module being referenced. Now, I would like to replace this value with a string value called "moduleID" wherein moduleID captures the unique ID of the module being referenced. The point is, I want to replace the static ID with a variable. My question is: Has anyone tried creating a DXL script that tweaks layout DXL columns in the way that I have described above? Is it possible to tweak layout DXL with DXL scripts? Any input will be highly appreciated. Thank you in advance. |